body {
margin: 0; 
background: rgb(255,215,0);
background: linear-gradient(0deg, rgba(255,215,0,1) 0%, rgba(0,87,184,1) 100%);
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
/*Логотип сайту*/
h1 {
font-weight: 250;
letter-spacing: 3px;
max-width: 350px;
width: 100%;
position: relative;
display: inline-block;
}
.title h1 {
text-align: center;
padding-bottom: 3px;
color: 	#FFFFFF;
font-size: 55px;
}
.title h1:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 40%;
  margin-left: -15%;
  width: 50%;
  height: 5px;
  background: #0057b8;
}
.title h1:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 40%;
  margin-left: -15%;
  width: 50%;
  height: 5px;
  background: #ffd700;
}
/*МЕНЮ*/
nav {
  background: #262F34;
  box-shadow: 0 3px 0 0 #ffd700;
  border-top: 2px solid #262F34;
  text-align: center;
}
nav a {
  text-decoration: none;
  display: block;
  transition: .3s linear;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.topmenu > li {
  display: inline-block;
  position: relative;
  }
.topmenu > li > a {
  font-weight: 100;
  padding: 20px 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0057b8;
}
.active:after, .submenu-link:after {
color: 	#0057b8;
font-weight: 100;
margin-left: 10px;
}
.topmenu .active, .topmenu > li > a:hover, .submenu li a:hover {
  color: 	#0057b8;
}
.submenu {
  position: absolute;
  left: -1px;
  z-index: 5;
  width: 240px;
  border-bottom: 1px solid #262F34;
  visibility: hidden;
  opacity: 0;  
  transform: translateY(10px);
  transition: .3s ease-in-out;
}
.submenu li {
	position: relative;
}
.submenu a {
  background: #262F34;
  color: #ffd700;
  text-align: left;
  font-size: 14px;
font-weight: 100;
  letter-spacing: 1px;
  padding: 10px 20px;
}
.submenu .submenu {
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  left: -webkit-calc(100% - 1px);
}
nav li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
/*Заголовок пункта*/
.transparent-text-title {
  font-size: 27px;
  text-transform: uppercase;
  background: #262F34;
  display: table;
  color: white;
  border-radius: 5px;
  mix-blend-mode: multiply;
  margin-top: 30px;
  padding: 7px;
}

.transparent-text {
  font-size: 20px;
  text-transform: uppercase;
  background: #262F34;
  display: table;
  margin-left: 200px;
  margin-right: 200px;
  margin-bottom: 30px;
  margin-top: 30px;
  color: white;
  border-radius: 5px;
  mix-blend-mode: multiply;
  padding: 5px 10px;
}
/*Слайд-шоу*/
.mySlides {display: none}
img {vertical-align: middle;}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.numbertext {
  color: #CCCCCC;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/*Полоса прокрутки*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #0057b8; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #ffd700;
}
/*Кнопка завантажити*/
.button-download {
    background: transparent;
    border: 2px solid 	#FFFFFF;
    position: relative;
    font-size: 14px;
    letter-spacing: .3em;
    padding: 17px 34px 17px 39px;
    transition: .3s ease-in-out;
    cursor: pointer;
	margin-top: 30px;
	margin-bottom: 30px;
}
.button-download:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: #0057b8;
    z-index: -1;
    transition: .25s ease;
    transform: translate(0, 0);
}
.button-download:hover:before {
    transform: translate(4px, 4px);
}
.button-download a {
	text-decoration: none;
	font-size: 17px;
	font-weight: 100;
	color: 	#FFFFFF;
}
/*Футер*/
footer {
    background: #262f34;
    font-size: 17px;
    font-weight: 100;
    color: #FFFFFF;
    padding: 50px;
    margin-top: 100px;
}
